JumpAndFireDrillShapePattern DrillPulseList
Get or Set the pulse list associated with this Jump and Fire Drill shape pattern. The pulse list may contain one or more laser pulse configurations which will be used for jump and fire pulse mode operation.
public IList<DrillPulse> DrillPulseList {get;Set} |
Return value
IList<DrillPulse> | Configured list of laser pulses |
Exceptions
empty |
Example
Copy
bool pulsemode = false;
JumpAndDrillShapePattern jumpandDrillPattern = new JumpAndDrillShapePattern((float)2.5, (float)2.5, 14, 1, 2, pulsemode);
DrillPulse pulse1 = new DrillPulse(25, 40, 2);
DrillPulse pulse2 = new DrillPulse(300, 5, 3);
DrillPulse pulse3 = new DrillPulse(5, 5, 1);
List<DrillPulse> drillPulseList = new List<DrillPulse>();
drillPulseList.Add(pulse1);
drillPulseList.Add(pulse2);
drillPulseList.Add(pulse3);
jumpandDrillPattern.DrillPulseList = drillPulseList;